home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / bipl.zip / PROCS.ZIP / TAB2LIST.ICN < prev    next >
Text File  |  1992-09-28  |  902b  |  39 lines

  1. ############################################################################
  2. #
  3. #    File:     tab2list.icn
  4. #
  5. #    Subject:  Procedure to insert tab-separated strings in list
  6. #
  7. #    Author:   Ralph E. Griswold
  8. #
  9. #    Date:     May 21, 1992
  10. #
  11. ###########################################################################
  12. #
  13. #     This procedure to takes tab-separated strings and inserts them
  14. #  into a list.
  15. #
  16. #  Vertical tabs in strings are converted to carriage returns.
  17. #
  18. #  (Works for lists too.)
  19. #
  20. ############################################################################
  21. #
  22. #  See also: list2tab.icn, tab2rec.icn, rec2tab.icn
  23. #
  24. ############################################################################
  25.  
  26. procedure tab2list(s)
  27.    local L
  28.  
  29.    L := []
  30.  
  31.    s ? {
  32.       while put(L, map(tab(upto('\t') | 0), "\v", "\n")) do
  33.          move(1) | break
  34.       }
  35.  
  36.    return L
  37.  
  38. end
  39.